home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Camelot / Camelot 105 (1991-02)(Swedish User Group of Amiga)(SE)(PD)[WB].zip / Camelot 105 (1991-02)(Swedish User Group of Amiga)(SE)(PD)[WB].adf / AmigaUUCP / include / getfiles.h < prev    next >
C/C++ Source or Header  |  1990-05-17  |  246b  |  20 lines

  1.  
  2. /*
  3.  *  GETFILES.H
  4.  */
  5.  
  6. #ifndef _GETFILES_H
  7. #define _GETFILES_H
  8.  
  9. typedef struct dir_list {
  10.     struct dir_list *next;
  11.     char name[1];
  12. } dir_list;
  13.  
  14. #ifndef _LIST_SORT_C
  15. extern void *list_sort(void *_list, int (*_cmp)(void *, void *));
  16. #endif
  17.  
  18. #endif
  19.  
  20.